-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.98 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="description" content="Exercício 22 - Jovens Tegranos - Etapa de Nivelamento">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../style.css">
<title>Exercício 22</title>
</head>
<body>
<div id="divInputs">
<span id="titulo">Exercício 22</span>
<p id="enunciado">Ler um número inteiro N, daí mostrar na tela a tabuada de N para 1 a 10,
conforme exemplo.</p>
<details>
<summary>
Exemplo
</summary>
<div id="divExemplo">Deseja a tabuada para qual valor? <span class="inputTexto">4</span><br>
4 x 1 = 4<br>
4 x 2 = 8<br>
4 x 3 = 12<br>
4 x 4 = 16<br>
4 x 5 = 20<br>
4 x 6 = 24<br>
4 x 7 = 28<br>
4 x 8 = 32<br>
4 x 9 = 36<br>
4 x 10 = 40
</div>
</details>
<div id="formInputs">
<label for="inputValorN">Deseja a tabuado para qual valor? </label>
<input class="input" id="inputValorN"></input>
</div>
<div id="button" class="button">Enviar</div>
<div id="pageBDiv">
<a class="button" href="../Exercício 21/index.html">Anterior</a>
<a class="button" href="../Exercício 23/index.html">Próximo</a>
</div>
<script src="./script.js"></script>
</div>
<div id="divOutputs">
<label for="outputArea" style="font-weight: bold;">Saída:</label>
<textarea id="outputArea" readonly></textarea>
</div>
</body>
</html>